home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 July / DPPCPRO0705.ISO / Editorial / Delphi 2005 / WinFormEditor / winformeditor.dpr < prev    next >
Encoding:
Text File  |  2005-03-23  |  3.4 KB  |  87 lines

  1. program winformeditor;
  2.  
  3. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.dll'}
  4. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Data.dll'}
  5. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Drawing.dll'}
  6. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Windows.Forms.dll'}
  7. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.XML.dll'}
  8. {$R 'wed.TWinForm.resources' 'wed.resx'}
  9.  
  10.  
  11. uses
  12.   System.Reflection,
  13.   System.Runtime.CompilerServices,
  14.   System.Windows.Forms,
  15.   wed in 'wed.pas' {wed.TWinForm: System.Windows.Forms.Form};
  16.  
  17. {$R *.res}
  18.  
  19. {$REGION 'Program/Assembly Information'}
  20. //
  21. // General Information about an assembly is controlled through the following
  22. // set of attributes. Change these attribute values to modify the information
  23. // associated with an assembly.
  24. //
  25. [assembly: AssemblyDescription('')]
  26. [assembly: AssemblyConfiguration('')]
  27. [assembly: AssemblyCompany('')]
  28. [assembly: AssemblyProduct('')]
  29. [assembly: AssemblyCopyright('')]
  30. [assembly: AssemblyTrademark('')]
  31. [assembly: AssemblyCulture('')]
  32.  
  33. // The Delphi compiler controls the AssemblyTitleAttribute via the ExeDescription.
  34. // You can set this in the IDE via the Project Options.
  35. // Manually setting the AssemblyTitle attribute below will override the IDE
  36. // setting.
  37. // [assembly: AssemblyTitle('')]
  38.  
  39.  
  40. //
  41. // Version information for an assembly consists of the following four values:
  42. //
  43. //      Major Version
  44. //      Minor Version 
  45. //      Build Number
  46. //      Revision
  47. //
  48. // You can specify all the values or you can default the Revision and Build Numbers 
  49. // by using the '*' as shown below:
  50.  
  51. [assembly: AssemblyVersion('1.0.*')]
  52.  
  53. //
  54. // In order to sign your assembly you must specify a key to use. Refer to the 
  55. // Microsoft .NET Framework documentation for more information on assembly signing.
  56. //
  57. // Use the attributes below to control which key is used for signing. 
  58. //
  59. // Notes: 
  60. //   (*) If no key is specified, the assembly is not signed.
  61. //   (*) KeyName refers to a key that has been installed in the Crypto Service
  62. //       Provider (CSP) on your machine. KeyFile refers to a file which contains
  63. //       a key.
  64. //   (*) If the KeyFile and the KeyName values are both specified, the 
  65. //       following processing occurs:
  66. //       (1) If the KeyName can be found in the CSP, that key is used.
  67. //       (2) If the KeyName does not exist and the KeyFile does exist, the key 
  68. //           in the KeyFile is installed into the CSP and used.
  69. //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
  70. //       When specifying the KeyFile, the location of the KeyFile should be
  71. //       relative to the project output directory. For example, if your KeyFile is
  72. //       located in the project directory, you would specify the AssemblyKeyFile 
  73. //       attribute as [assembly: AssemblyKeyFile('mykey.snk')], provided your output
  74. //       directory is the project directory (the default).
  75. //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
  76. //       documentation for more information on this.
  77. //
  78. [assembly: AssemblyDelaySign(false)]
  79. [assembly: AssemblyKeyFile('')]
  80. [assembly: AssemblyKeyName('')]
  81. {$ENDREGION}
  82.  
  83. [STAThread]
  84. begin
  85.   Application.Run(TWinForm.Create);
  86. end.
  87.